home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / uucp-104.lha / uucp-1.04 / tli.c < prev    next >
C/C++ Source or Header  |  1993-02-13  |  16KB  |  645 lines

  1. /* tli.c
  2.    Code to handle TLI connections.
  3.  
  4.    Copyright (C) 1992 Ian Lance Taylor
  5.  
  6.    This file is part of the Taylor UUCP package.
  7.  
  8.    This program is free software; you can redistribute it and/or
  9.    modify it under the terms of the GNU General Public License as
  10.    published by the Free Software Foundation; either version 2 of the
  11.    License, or (at your option) any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful, but
  14.    WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.    General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.    The author of the program may be contacted at ian@airs.com or
  23.    c/o Infinity Development Systems, P.O. Box 520, Waltham, MA 02254.
  24.    */
  25.  
  26. #include "uucp.h"
  27.  
  28. #if USE_RCS_ID
  29. const char tli_rcsid[] = "$Id: tli.c,v 1.8 1993/01/24 00:46:53 ian Rel $";
  30. #endif
  31.  
  32. #if HAVE_TLI
  33.  
  34. #include "sysdep.h"
  35. #include "uudefs.h"
  36. #include "uuconf.h"
  37. #include "conn.h"
  38. #include "system.h"
  39.  
  40. #include <errno.h>
  41.  
  42. #if HAVE_SYS_IOCTL_H
  43. #include <sys/ioctl.h>
  44. #endif
  45.  
  46. #if HAVE_TIUSER_H
  47. #include <tiuser.h>
  48. #else
  49. #if HAVE_XTI_H
  50. #include <xti.h>
  51. #else
  52. #if HAVE_SYS_TLI_H
  53. #include <sys/tli.h>
  54. #endif
  55. #endif
  56. #endif
  57.  
  58. #if HAVE_STROPTS_H
  59. #include <stropts.h>
  60. #endif
  61.  
  62. #if HAVE_FCNTL_H
  63. #include <fcntl.h>
  64. #else
  65. #if HAVE_SYS_FILE_H
  66. #include <sys/file.h>
  67. #endif
  68. #endif
  69.  
  70. #ifndef O_RDONLY
  71. #define O_RDONLY 0
  72. #define O_WRONLY 1
  73. #define O_RDWR 2
  74. #endif
  75.  
  76. #ifndef FD_CLOEXEC
  77. #define FD_CLOEXEC 1
  78. #endif
  79.  
  80. /* The arguments to t_alloca have two different names.  I want the
  81.    SVID ones, not the XPG3 ones.  */
  82. #ifndef T_BIND
  83. #define T_BIND T_BIND_STR
  84. #endif
  85. #ifndef T_CALL
  86. #define T_CALL T_CALL_STR
  87. #endif
  88.  
  89. /* Hopefully these externs will not cause any trouble.  This is how
  90.    they are shown in the SVID.  */
  91. extern int t_errno;
  92. extern char *t_errlist[];
  93. extern int t_nerr;
  94.  
  95. #ifndef t_alloc
  96. extern pointer t_alloc ();
  97. #endif
  98.  
  99. /* This code handles TLI connections.  It's Unix specific.  It's
  100.    largely based on code from Unix Network Programming, by W. Richard
  101.    Stevens.  */
  102.  
  103. /* Local functions.  */
  104. static const char *ztlierror P((void));
  105. static void utli_free P((struct sconnection *qconn));
  106. static boolean ftli_push P((struct sconnection *qconn));
  107. static boolean ftli_open P((struct sconnection *qconn, long ibaud,
  108.                 boolean fwait));
  109. static boolean ftli_close P((struct sconnection *qconn,
  110.                  pointer puuconf,
  111.                  struct uuconf_dialer *qdialer,
  112.                  boolean fsuccess));
  113. static boolean ftli_reset P((struct sconnection *qconn));
  114. static boolean ftli_dial P((struct sconnection *qconn, pointer puuconf,
  115.                 const struct uuconf_system *qsys,
  116.                 const char *zphone,
  117.                 struct uuconf_dialer *qdialer,
  118.                 enum tdialerfound *ptdialer));
  119.  
  120. /* The command table for a TLI connection.  */
  121. static const struct sconncmds stlicmds =
  122. {
  123.   utli_free,
  124.   NULL, /* pflock */
  125.   NULL, /* pfunlock */
  126.   ftli_open,
  127.   ftli_close,
  128.   ftli_reset,
  129.   ftli_dial,
  130.   fsysdep_conn_read,
  131.   fsysdep_conn_write,
  132.   fsysdep_conn_io,
  133.   NULL, /* pfbreak */
  134.   NULL, /* pfset */
  135.   NULL, /* pfcarrier */
  136.   fsysdep_conn_chat,
  137.   NULL /* pibaud */
  138. };
  139.  
  140. /* Get a TLI error string.  */
  141.  
  142. static const char *
  143. ztlierror ()
  144. {
  145.   if (t_errno == TSYSERR)
  146.     return strerror (errno);
  147.   if (t_errno < 0 || t_errno >= t_nerr)
  148.     return "Unknown TLI error";
  149.   return t_errlist[t_errno];
  150.  
  151. /* Initialize a TLI connection.  */
  152.  
  153. boolean
  154. fsysdep_tli_init (qconn)
  155.      struct sconnection *qconn;
  156. {
  157.   struct ssysdep_conn *q;
  158.  
  159.   q = (struct ssysdep_conn *) xmalloc (sizeof (struct ssysdep_conn));
  160.   q->o = -1;
  161.   q->zdevice = NULL;
  162.   q->iflags = -1;
  163.   q->istdout_flags = -1;
  164.   q->fterminal = FALSE;
  165.   q->ftli = TRUE;
  166.   q->ibaud = 0;
  167.  
  168.   qconn->psysdep = (pointer) q;
  169.   qconn->qcmds = &stlicmds;
  170.   return TRUE;
  171. }
  172.  
  173. /* Free a TLI connection.  */
  174.  
  175. static void
  176. utli_free (qconn)
  177.      struct sconnection *qconn;
  178. {
  179.   xfree (qconn->psysdep);
  180. }
  181.  
  182. /* Push all desired modules onto a TLI stream.  If the user requests a
  183.    STREAMS connection without giving a list of modules, we just push
  184.    tirdwr.  If the I_PUSH ioctl is not defined on this system, we just
  185.    ignore any list of modules.  */
  186.  
  187. static boolean
  188. ftli_push (qconn)
  189.      struct sconnection *qconn;
  190. {
  191. #ifdef I_PUSH
  192.  
  193.   struct ssysdep_conn *qsysdep;
  194.  
  195.   qsysdep = (struct ssysdep_conn *) qconn->psysdep;
  196.  
  197.   if (qconn->qport->uuconf_u.uuconf_stli.uuconf_pzpush != NULL)
  198.     {
  199.       char **pz;
  200.  
  201.       for (pz = qconn->qport->uuconf_u.uuconf_stli.uuconf_pzpush;
  202.        *pz != NULL;
  203.        pz++)
  204.     {
  205.       if (ioctl (qsysdep->o, I_PUSH, *pz) < 0)
  206.         {
  207.           ulog (LOG_ERROR, "ioctl (I_PUSH, %s): %s", *pz,
  208.             strerror (errno));
  209.           return FALSE;
  210.         }
  211.     }
  212.     }
  213.   else if (qconn->qport->uuconf_u.uuconf_stli.uuconf_fstream)
  214.     {
  215.       if (ioctl (qsysdep->o, I_PUSH, "tirdwr") < 0)
  216.     {
  217.       ulog (LOG_ERROR, "ioctl (I_PUSH, tirdwr): %s",
  218.         strerror (errno));
  219.       return FALSE;
  220.     }
  221.     }
  222.  
  223.   /* If we have just put the connection into stream mode, we must turn
  224.      off the TLI flag to avoid using TLI calls on it.  */
  225.   if (qconn->qport->uuconf_u.uuconf_stli.uuconf_fstream)
  226.     qsysdep->ftli = FALSE;
  227.  
  228. #endif /* defined (I_PUSH) */
  229.   
  230.   return TRUE;
  231. }
  232.  
  233. /* Open a TLI connection.  If the fwait argument is TRUE, we are
  234.    running as a server.  Otherwise we are just trying to reach another
  235.    system.  */
  236.  
  237. static boolean
  238. ftli_open (qconn, ibaud, fwait)
  239.      struct sconnection *qconn;
  240.      long ibaud;
  241.      boolean fwait;
  242. {
  243.   struct ssysdep_conn *qsysdep;
  244.   const char *zdevice;
  245.   char *zfreedev;
  246.   const char *zservaddr;
  247.   char *zfreeaddr;
  248.   struct t_bind *qtbind;
  249.   struct t_call *qtcall;
  250.  
  251.   /* Unlike most other device types, we don't bother to call
  252.      ulog_device here, because fconn_open calls it with the name of
  253.      the port anyhow.  */
  254.  
  255.   qsysdep = (struct ssysdep_conn *) qconn->psysdep;
  256.  
  257.   zdevice = qconn->qport->uuconf_u.uuconf_stli.uuconf_zdevice;
  258.   if (zdevice == NULL)
  259.     zdevice = qconn->qport->uuconf_zname;
  260.  
  261.   zfreedev = NULL;
  262.   if (*zdevice != '/')
  263.     {
  264.       zfreedev = zbufalc (sizeof "/dev/" + strlen (zdevice));
  265.       sprintf (zfreedev, "/dev/%s", zdevice);
  266.       zdevice = zfreedev;
  267.     }
  268.  
  269.   qsysdep->o = t_open (zdevice, O_RDWR, (struct t_info *) NULL);
  270.   if (qsysdep->o < 0)
  271.     {
  272.       ulog (LOG_ERROR, "t_open (%s): %s", zdevice, ztlierror ());
  273.       ubuffree (zfreedev);
  274.       return FALSE;
  275.     }
  276.  
  277.   if (fcntl (qsysdep->o, F_SETFD,
  278.          fcntl (qsysdep->o, F_GETFD, 0) | FD_CLOEXEC) < 0)
  279.     {
  280.       ulog (LOG_ERROR, "fcntl (FD_CLOEXEC): %s", strerror (errno));
  281.       ubuffree (zfreedev);
  282.       (void) t_close (qsysdep->o);
  283.       qsysdep->o = -1;
  284.       return FALSE;
  285.     }
  286.  
  287.   qsysdep->iflags = fcntl (qsysdep->o, F_GETFL, 0);
  288.   if (qsysdep->iflags < 0)
  289.     {
  290.       ulog (LOG_ERROR, "fcntl: %s", strerror (errno));
  291.       ubuffree (zfreedev);
  292.       (void) t_close (qsysdep->o);
  293.       qsysdep->o = -1;
  294.       return FALSE;
  295.     }
  296.  
  297.   /* If we aren't waiting for a connection, we can bind to any local
  298.      address, and then we're finished.  */
  299.   if (! fwait)
  300.     {
  301.       ubuffree (zfreedev);
  302.       if (t_bind (qsysdep->o, (struct t_bind *) NULL,
  303.           (struct t_bind *) NULL) < 0)
  304.     {
  305.       ulog (LOG_ERROR, "t_bind: %s", ztlierror ());
  306.       (void) t_close (qsysdep->o);
  307.       qsysdep->o = -1;
  308.       return FALSE;
  309.     }
  310.       return TRUE;
  311.     }
  312.  
  313.   /* Run as a server and wait for a new connection.  The code in
  314.      uucico.c has already detached us from our controlling terminal.
  315.      From this point on if the server gets an error we exit; we only
  316.      return if we have received a connection.  It would be more robust
  317.      to respawn the server if it fails; someday.  */
  318.   qtbind = (struct t_bind *) t_alloc (qsysdep->o, T_BIND, T_ALL);
  319.   if (qtbind == NULL)
  320.     ulog (LOG_FATAL, "t_alloc (T_BIND): %s", ztlierror ());
  321.  
  322.   zservaddr = qconn->qport->uuconf_u.uuconf_stli.uuconf_zservaddr;
  323.   if (zservaddr == NULL)
  324.     ulog (LOG_FATAL, "Can't run as TLI server; no server address");
  325.       
  326.   zfreeaddr = zbufcpy (zservaddr);
  327.   qtbind->addr.len = cescape (zfreeaddr);
  328.   if (qtbind->addr.len > qtbind->addr.maxlen)
  329.     ulog (LOG_FATAL, "%s: TLI server address too long (max %d)",
  330.       zservaddr, qtbind->addr.maxlen);
  331.   memcpy (qtbind->addr.buf, zfreeaddr, qtbind->addr.len);
  332.   ubuffree (zfreeaddr);
  333.  
  334.   qtbind->qlen = 5;
  335.  
  336.   if (t_bind (qsysdep->o, qtbind, (struct t_bind *) NULL) < 0)
  337.     ulog (LOG_FATAL, "t_bind (%s): %s", zservaddr, ztlierror ());
  338.  
  339.   (void) t_free ((pointer) qtbind, T_BIND);
  340.  
  341.   qtcall = (struct t_call *) t_alloc (qsysdep->o, T_CALL, T_ALL);
  342.   if (qtcall == NULL)
  343.     ulog (LOG_FATAL, "t_alloc (T_CALL): %s", ztlierror ());
  344.  
  345.   while (! FGOT_SIGNAL ())
  346.     {
  347.       int onew;
  348.       pid_t ipid;
  349.  
  350.       DEBUG_MESSAGE0 (DEBUG_PORT,
  351.               "ftli_open: Waiting for connections");
  352.  
  353.       if (t_listen (qsysdep->o, qtcall) < 0)
  354.     ulog (LOG_FATAL, "t_listen: %s", ztlierror ());
  355.  
  356.       onew = t_open (zdevice, O_RDWR, (struct t_info *) NULL);
  357.       if (onew < 0)
  358.     ulog (LOG_FATAL, "t_open (%s): %s", zdevice, ztlierror ());
  359.       
  360.       if (fcntl (onew, F_SETFD,
  361.          fcntl (onew, F_GETFD, 0) | FD_CLOEXEC) < 0)
  362.     ulog (LOG_FATAL, "fcntl (FD_CLOEXEC): %s", strerror (errno));
  363.  
  364.       if (t_bind (onew, (struct t_bind *) NULL, (struct t_bind *) NULL) < 0)
  365.     ulog (LOG_FATAL, "t_bind: %s", ztlierror ());
  366.  
  367.       if (t_accept (qsysdep->o, onew, qtcall) < 0)
  368.     {
  369.       /* We may have received a disconnect.  */
  370.       if (t_errno != TLOOK)
  371.         ulog (LOG_FATAL, "t_accept: %s", ztlierror ());
  372.       if (t_rcvdis (qsysdep->o, (struct t_discon *) NULL) < 0)
  373.         ulog (LOG_FATAL, "t_rcvdis: %s", ztlierror ());
  374.       (void) t_close (onew);
  375.       continue;
  376.     }
  377.  
  378.       DEBUG_MESSAGE0 (DEBUG_PORT,
  379.               "ftli_open: Got connection; forking");
  380.  
  381.       ipid = ixsfork ();
  382.       if (ipid < 0)
  383.     ulog (LOG_FATAL, "fork: %s", strerror (errno));
  384.       if (ipid == 0)
  385.     {
  386.       ulog_close ();
  387.  
  388.       (void) t_close (qsysdep->o);
  389.       qsysdep->o = onew;
  390.  
  391.       /* Push any desired modules.  */
  392.       if (! ftli_push (qconn))
  393.         _exit (EXIT_FAILURE);
  394.  
  395.       /* Now we fork and let our parent die, so that we become
  396.          a child of init.  This lets the main server code wait
  397.          for its child and then continue without accumulating
  398.          zombie children.  */
  399.       ipid = ixsfork ();
  400.       if (ipid < 0)
  401.         {
  402.           ulog (LOG_ERROR, "fork: %s", strerror (errno));
  403.           _exit (EXIT_FAILURE);
  404.         }
  405.           
  406.       if (ipid != 0)
  407.         _exit (EXIT_SUCCESS);
  408.  
  409.       ulog_id (getpid ());
  410.  
  411.       return TRUE;
  412.     }
  413.  
  414.       (void) t_close (onew);
  415.  
  416.       /* Now wait for the child.  */
  417.       (void) ixswait ((unsigned long) ipid, (const char *) NULL);
  418.     }
  419.  
  420.   /* We got a signal.  */
  421.   usysdep_exit (FALSE);
  422.  
  423.   /* Avoid compiler warnings.  */
  424.   return FALSE;
  425. }
  426.  
  427. /* Close the port.  */
  428.  
  429. /*ARGSUSED*/
  430. static boolean
  431. ftli_close (qconn, puuconf, qdialer, fsuccess)
  432.      struct sconnection *qconn;
  433.      pointer puuconf;
  434.      struct uuconf_dialer *qdialer;
  435.      boolean fsuccess;
  436. {
  437.   struct ssysdep_conn *qsysdep;
  438.   boolean fret;
  439.  
  440.   qsysdep = (struct ssysdep_conn *) qconn->psysdep;
  441.  
  442.   fret = TRUE;
  443.   if (qsysdep->o >= 0)
  444.     {
  445.       if (qsysdep->ftli)
  446.     {
  447.       if (t_close (qsysdep->o) < 0)
  448.         {
  449.           ulog (LOG_ERROR, "t_close: %s", ztlierror ());
  450.           fret = FALSE;
  451.         }
  452.     }
  453.       else
  454.     {
  455.       if (close (qsysdep->o) < 0)
  456.         {
  457.           ulog (LOG_ERROR, "close: %s", strerror (errno));
  458.           fret = FALSE;
  459.         }
  460.     }
  461.  
  462.       qsysdep->o = -1;
  463.     }
  464.  
  465.   return fret;
  466. }
  467.  
  468. /* Reset the port.  This will be called by a child which was forked
  469.    off in ftli_open, above.  We don't want uucico to continue looping
  470.    and giving login prompts, so we pretend that we received a SIGINT
  471.    signal.  This should probably be handled more cleanly.  The signal
  472.    will not be recorded in the log file because we don't set
  473.    afLog_signal[INDEXSIG_SIGINT].  */
  474.  
  475. /*ARGSUSED*/
  476. static boolean
  477. ftli_reset (qconn)
  478.      struct sconnection *qconn;
  479. {
  480.   afSignal[INDEXSIG_SIGINT] = TRUE;
  481.   return TRUE;
  482. }
  483.  
  484. /* Dial out on a TLI port, so to speak: connect to a remote computer.  */
  485.  
  486. /*ARGSUSED*/
  487. static boolean
  488. ftli_dial (qconn, puuconf, qsys, zphone, qdialer, ptdialerfound)
  489.      struct sconnection *qconn;
  490.      pointer puuconf;
  491.      const struct uuconf_system *qsys;
  492.      const char *zphone;
  493.      struct uuconf_dialer *qdialer;
  494.      enum tdialerfound *ptdialerfound;
  495. {
  496.   struct ssysdep_conn *qsysdep;
  497.   char **pzdialer;
  498.   const char *zaddr;
  499.   struct t_call *qtcall;
  500.   char *zescape;
  501.  
  502.   qsysdep = (struct ssysdep_conn *) qconn->psysdep;
  503.  
  504.   *ptdialerfound = DIALERFOUND_FALSE;
  505.  
  506.   pzdialer = qconn->qport->uuconf_u.uuconf_stli.uuconf_pzdialer;
  507.   if (*pzdialer == NULL)
  508.     pzdialer = NULL;
  509.  
  510.   /* If the first dialer is "TLI" or "TLIS", we use the first token
  511.      (pzdialer[1]) as the address to connect to.  */
  512.   zaddr = zphone;
  513.   if (pzdialer != NULL
  514.       && (strcmp (pzdialer[0], "TLI") == 0
  515.       || strcmp (pzdialer[0], "TLIS") == 0))
  516.     {
  517.       if (pzdialer[1] == NULL)
  518.     ++pzdialer;
  519.       else
  520.     {
  521.       if (strcmp (pzdialer[1], "\\D") != 0
  522.           && strcmp (pzdialer[1], "\\T") != 0)
  523.         zaddr = pzdialer[1];
  524.       pzdialer += 2;
  525.     }
  526.     }
  527.   
  528.   if (zaddr == NULL)
  529.     {
  530.       ulog (LOG_ERROR, "No address for TLI connection");
  531.       return FALSE;
  532.     }
  533.  
  534.   qtcall = (struct t_call *) t_alloc (qsysdep->o, T_CALL, T_ADDR);
  535.   if (qtcall == NULL)
  536.     {
  537.       ulog (LOG_ERROR, "t_alloc (T_CALL): %s", ztlierror ());
  538.       return FALSE;
  539.     }
  540.  
  541.   zescape = zbufcpy (zaddr);
  542.   qtcall->addr.len = cescape (zescape);
  543.   if (qtcall->addr.len > qtcall->addr.maxlen)
  544.     {
  545.       ulog (LOG_ERROR, "%s: TLI address too long (max %d)", zaddr,
  546.         qtcall->addr.maxlen);
  547.       ubuffree (zescape);
  548.       return FALSE;
  549.     }
  550.   memcpy (qtcall->addr.buf, zescape, qtcall->addr.len);
  551.   ubuffree (zescape);
  552.  
  553.   if (t_connect (qsysdep->o, qtcall, (struct t_call *) NULL) < 0)
  554.     {
  555.       if (t_errno != TLOOK)
  556.     ulog (LOG_ERROR, "t_connect: %s", ztlierror ());
  557.       else
  558.     {
  559.       if (t_rcvdis (qsysdep->o, (struct t_discon *) NULL) < 0)
  560.         ulog (LOG_ERROR, "t_rcvdis: %s", ztlierror ());
  561.       else
  562.         ulog (LOG_ERROR, "Connection refused");
  563.     }
  564.       return FALSE;
  565.     }
  566.  
  567.   /* We've connected to the remote.  Push any desired modules.  */
  568.   if (! ftli_push (qconn))
  569.     return FALSE;      
  570.  
  571.   /* Handle the rest of the dialer sequence.  This is similar to
  572.      fmodem_dial, and they should, perhaps, be combined somehow.  */
  573.   if (pzdialer != NULL)
  574.     {
  575.       boolean ffirst;
  576.  
  577.       ffirst = TRUE;
  578.       while (*pzdialer != NULL)
  579.     {
  580.       int iuuconf;
  581.       struct uuconf_dialer *q;
  582.       struct uuconf_dialer s;
  583.       const char *ztoken;
  584.       boolean ftranslate;
  585.  
  586.       if (! ffirst)
  587.         q = &s;
  588.       else
  589.         q = qdialer;
  590.  
  591.       iuuconf = uuconf_dialer_info (puuconf, *pzdialer, q);
  592.       if (iuuconf == UUCONF_NOT_FOUND)
  593.         {
  594.           ulog (LOG_ERROR, "%s: Dialer not found", *pzdialer);
  595.           return FALSE;
  596.         }
  597.       else if (iuuconf != UUCONF_SUCCESS)
  598.         {
  599.           ulog_uuconf (LOG_ERROR, puuconf, iuuconf);
  600.           return FALSE;
  601.         }
  602.  
  603.       ++pzdialer;
  604.       ztoken = *pzdialer;
  605.  
  606.       ftranslate = FALSE;
  607.       if (ztoken == NULL
  608.           || strcmp (ztoken, "\\D") == 0)
  609.         ztoken = zphone;
  610.       else if (strcmp (ztoken, "\\T") == 0)
  611.         {
  612.           ztoken = zphone;
  613.           ftranslate = TRUE;
  614.         }
  615.  
  616.       if (! fchat (qconn, puuconf, &q->uuconf_schat,
  617.                (const struct uuconf_system *) NULL, q,
  618.                zphone, ftranslate, qconn->qport->uuconf_zname,
  619.                (long) 0))
  620.         {
  621.           (void) uuconf_dialer_free (puuconf, q);
  622.           if (! ffirst)
  623.         (void) uuconf_dialer_free (puuconf, qdialer);
  624.           return FALSE;
  625.         }
  626.  
  627.       if (ffirst)
  628.         {
  629.           *ptdialerfound = DIALERFOUND_FREE;
  630.           ffirst = FALSE;
  631.         }
  632.       else
  633.         (void) uuconf_dialer_free (puuconf, q);
  634.  
  635.       if (*pzdialer != NULL)
  636.         ++pzdialer;
  637.     }
  638.     }
  639.  
  640.   return TRUE;
  641. }
  642.  
  643. #endif /* HAVE_TLI */
  644.